home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / tcoop10a.zip / DEMO.ZIP / TESTPLAY.CPP < prev    next >
C/C++ Source or Header  |  1991-11-20  |  377b  |  24 lines

  1. //
  2. //      TESTPLAY.CPP
  3. //      version 1.00    11/15/91
  4. //      test the Play Class
  5. //      copyright (c) 1991 by James S. Clark
  6. //      all rights reserved
  7. //
  8.  
  9. #include <conio.h>
  10.  
  11. #include "play.hpp"
  12.  
  13.  
  14. main()
  15. {
  16.     Play    player;
  17.  
  18.     player.string("T140|O3|MS|C8F4G#8F4|C8F4G#8F4|C8F4G8G#GFE4F8G4|"
  19.             "C8F4G#8F4|C8F4G#8F4.|>C8CC<A#G#GF2.|$$");
  20.  
  21.     getch();
  22. }
  23.  
  24.